"use client"; import { FC, PropsWithChildren } from "react"; import { useRouter } from "@/i18n"; // import ButtonOwn from "@/components/ButtonOwn"; import './page.scss' interface Props {} const Profile: FC> = (props) => { // let [amount, setAmount] = React.useState(0) let amount = 50 let amountList = [10,20,50,100,200,500,1000,5000,10000,500,1000,5000,10000] const router = useRouter(); const goPage = (path = '/') => { router.push(path) } return (
Conta 5516982013895
goPage('/login')}> Login
Saldo
brl 0.00
Bônus
brl 0.00
goPage('/deposit')}>Depósito goPage('/withdraw')}>Sacar {/* Depósito Sacar */}
goPage('/login')}>Login
); }; export default Profile;